home *** CD-ROM | disk | FTP | other *** search
- #include "vogl.h"
-
- /*
- * pushmatrix_
- */
- void
- pushmatrix_()
- {
- pushmatrix();
- }
-
- /*
- * pushma_ (same as pushmatrix_)
- */
- void
- pushma_()
- {
- pushmatrix();
- }
-
- /*
- * popmatrix_
- */
- void
- popmatrix_()
- {
- popmatrix();
- }
-
- /*
- * popmat_ (same as popmatrix_)
- */
- void
- popmat_()
- {
- popmatrix();
- }
-
- /*
- * getmatrix_
- */
- void
- getmatrix_(mat)
- Matrix *mat;
- {
- getmatrix(mat);
- }
-
- /*
- * getmat_ (same as getmatrix_)
- */
- void
- getmat_(mat)
- Matrix *mat;
- {
- getmatrix(mat);
- }
-
- /*
- * loadmatrix_
- */
- void
- loadmatrix_(mat)
- Matrix *mat;
- {
- loadmatrix(mat);
- }
-
- /*
- * loadma_ (same as loadmatrix_)
- */
- void
- loadma_(mat)
- Matrix *mat;
- {
- loadmatrix(mat);
- }
-
- /*
- * multmatrix_
- */
- void
- multmatrix_(mat)
- Matrix *mat;
- {
- multmatrix(mat);
- }
-
- /*
- * multma_ (same as multmatrix__
- */
- void
- multma_(mat)
- Matrix *mat;
- {
- multmatrix(mat);
- }
-